.btn-1 {
  z-index: 1;
  overflow: hidden;
  background: transparent;
  position: relative;
  padding: 8px 50px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1em;
  letter-spacing: 2px;
  transition: 0.2s ease;
  font-weight: bold;
  margin: 5px 0px;
}
.btn-1.green {
  border: 4px solid #2ccf6d;
  color: #0e0620;
}
.btn-1.green:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #2ccf6d;
  z-index: -1;
  transition: 0.2s ease;
}
.btn-1.green:hover {
  color: var(--white-color);
  background: #2ccf6d;
  transition: 0.2s ease;
}
.btn-1.green:hover:before {
  width: 100%;
}

.btn2 {
    text-align: center;
    color: var(--primary-color);
    background: #fff;
    padding: 10px 40px;
    font-weight: bold;
    border: 1px solid var(--primary-color);

}

.btn2:hover {
    text-decoration: none;
    color: #fff;
    background: var(--primary-color);
    cursor: pointer;
}


.common-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: #FF6A40;
    color: #fff;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    opacity: 1;
    font-weight: 600;
    padding: 12px 25px;
}

.common-btn:hover {
    color: #fff !important;
}

.common-btn:hover span {
    width: 225%;
    height: 562.5px;
}

.common-btn span {
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #022E6B;
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
    opacity: 1;
}
.btn-3 {
  text-align: center;
  color: var(--white-color);
  background: var(--primary-color);
  padding: 8px 15px;
  font-weight: bold;
  border: 1px solid var(--primary-color);
  width: 250px;
  text-transform: uppercase;
}

.btn-3 a {
  color: var(--white-color);
}

.btn-3:hover {
  text-decoration: none;
  color: var(--primary-color);
  background: var(--white-color);
  cursor: pointer;
}

.btn-3:hover a {
  text-decoration: none;
  color: var(--primary-color);
}
@media (max-width: 425px) {
.btn2 {
        margin-bottom: 15px;
    }
}